home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload Trio 2 / Shareware Overload Trio Volume 2 (Chestnut CD-ROM).ISO / dir44 / c_life.zip / LIFE.TXT < prev   
Text File  |  1993-08-30  |  1KB  |  22 lines

  1. T H I S   I S   F R E E W A R E !
  2.  
  3. "Life" program, by Charles W. Reace, Jr., Berlin, NJ.
  4.  
  5. This is a fairly simple C++ program I wrote to help teach myself programming
  6. in C.  It is the now veneralble game of life, where each "*" on the display 
  7. screen represents a cell of life on some theoretical growth medium.  A few
  8. simple rules determine whether each cell lives, dies, and/or creates life in
  9. adjacent cells.
  10.  
  11. Each instantiation of this program will run until 200 generations have 
  12. elapsed, or until the population reaches 0; at which point a new random start-
  13. ing pattern will be generated and it all starts over again.  Pressing any key
  14. will abort the program.
  15.  
  16. The source code is included in this zipfile.  Please feel free to make copies
  17. of all files and distribute as desired, without any alterations.  Please also
  18. feel free to edit the source (compiled with Borland's Turbo C++ for the PC) 
  19. to make any enhancements and then distribute under your own name.  Perhaps
  20. you might turn it into a screen-saver program, using a different color scheme
  21. each instantiation.
  22.